home *** CD-ROM | disk | FTP | other *** search
- package sunw.demo.test;
-
- import java.util.EventObject;
-
- public class BridgeTesterEvent extends EventObject {
- protected String stringValue;
- protected int intValue;
-
- BridgeTesterEvent(Object var1, String var2, int var3) {
- super(var1);
- this.stringValue = var2;
- this.intValue = var3;
- }
-
- public void setInformationValue(String var1) {
- this.stringValue = var1;
- }
-
- public void setIntValue(int var1) {
- this.intValue = var1;
- }
-
- public String getInformation() {
- return this.stringValue;
- }
-
- public int getIntValue() {
- return this.intValue;
- }
- }
-